home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / usmetr11.zip / INSTALL.BAT next >
DOS Batch File  |  1994-03-13  |  566b  |  24 lines

  1. @echo off
  2. cls
  3. echo USMetric 1.1 Installation program
  4. echo --------------------------------------------
  5. echo.
  6. echo.
  7. if x%1 == x goto noparam
  8. goto install
  9. :noparam
  10. echo Please specify which drive you want USMetric to be installed on.
  11. echo i.e.    install c:    (installs on c-drive)
  12. echo.
  13. goto exit
  14. :install
  15. md %1\usmetric
  16. copy usmetric.exe %1\usmetric
  17. copy usmetric.txt %1\usmetric
  18. copy usmetric.ico %1\usmetric
  19. copy usmetric.pif %1\usmetric
  20. copy install.bat %1\usmetric
  21. echo Installation complete. Program was installed on %1\usmetric.
  22.  
  23. :exit
  24.